body {
  /* max-width: ; */
  margin: auto;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
}
a:-webkit-any-link {
  cursor: pointer;
}
a:-webkit-any-link:hover {
  cursor: pointer; /* カーソルを指の形にする */
  opacity: 0.5; /* 透明度を50%（薄く）にする */
  transition: opacity 0.3s; /* 薄くなるアニメーションをスムーズにする（任意） */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 30px;
  width: 100%;
  height: 60px;
  background: #fcffff;
  border-bottom: solid 2px;
  -o-border-image: linear-gradient(
    to right,
    #dfc263,
    #ebc55c,
    #fcb212,
    #f79d27,
    #f58d04
  );
  border-image: linear-gradient(
    to right,
    #dfc263,
    #ebc55c,
    #fcb212,
    #f79d27,
    #f58d04
  );
  border-image-slice: 1;
  z-index: 1;
}

.header-inner {
  margin: auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 1200px;
}

.header-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-logo img {
  height: 30px;
}

/* logoアニメーション本体 */
@keyframes fadeDownAnime {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.header-logo {
  animation-name: fadeDownAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.header-logo img {
  height: 30px;
}
/* 右上ボタン4つ */

@keyframes fadeLeftAnime {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeLeftTrigger li a {
  text-decoration: none;
  color: #fff;
  padding: 8px 10px;
  background: #f58d04;
  border-radius: 5px;
}

li {
  list-style: none;
}
.fadeLeftTrigger {
  animation-name: fadeLeftAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
  align-items: center;
  display: flex;
  gap: 15px;
}

header ul {
  display: flex;
  gap: 15px;
}

#sec_list {
  scroll-margin-top: 100px;
}

/* メイン一番上 */

.main_back {
  background-color: #fff1e3;
}

.plg_main {
  align-items: center;
  text-align: center;
  display: block;
  margin: auto;
  padding: 10% 7% 2%;
  max-width: 1200px;
}
.main_cont {
  display: flex;
  justify-content: space-evenly;
}

.plugin_main_img {
  width: 40%;
  padding: 50px 0 0;
  position: relative;
  display: block;
}

.plugin_text {
  /* background-color: burlywood; */
  width: 50%;
}

.plugin_text h1 {
  text-align: left;
  color: #ff9602;
  font-size: 500%;
  font-weight: bold;
  width: 130%;
}

.plugin_text p {
  text-align: left;
  color: #333;
  font-weight: bold;
  padding: 7% 15%;
  font-size: 140%;
  width: 140%;
  line-height: 160%;
}

@media screen and (max-width: 1024px) {
  /* PC */
  .plugin_text p {
    font-size: 130%;
  }
  .plugin_text h1 {
    font-size: 430%;
  }

  .plg_list_text {
    font-size: x-large !important;
  }
}
@media screen and (max-width: 768px) {
  /* タブ */

  .plugin_text p {
    font-size: 100%;
  }
  .plugin_text h1 {
    font-size: 320%;
  }
  .plg_list_text {
    font-size: large !important;
  }
  .plg_main {
    padding: 15% 7% 2%;
  }
}

/*ナビ。ハンバーガー*/
#g-nav.panelactive {
  top: 0;
}
/* ハンバーガー */
.openbtn {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: calc(100vw - 50px);
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.5s;
  /*アニメーション設定*/
}

.openbtn span {
  display: inline-block;
  position: absolute;
  transition: all 0.4s;
  left: 14px;
  width: 45%;
  height: 3px;
  border-radius: 2px;
  background: #ff9602;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/* ナビ */
#g-nav {
  position: fixed;
  top: -120%;
  left: 0;
  width: 100%;
  height: 40vh;
  padding: 80px 0;
  background: #fff;
  transition: all 0.6s;
  z-index: 101;
}

#g-nav.panelactive {
  top: 0;
}

#g-nav .contact-btn {
  width: 100%;
  margin: 80px auto 0 auto;
  text-align: center;
}

#g-nav .contact-btn a {
  display: block;
  width: 100%;
  color: #fff;
  text-decoration: none;
  padding: 30px 0;
  background: #ff9602;
}

#g-nav .contact-btn a:hover {
  opacity: 0.7 !important;
}

#g-nav ul {
  height: unset;
}

#g-nav ul li {
  position: relative;
  list-style: none;
  text-align: left;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(
    to right,
    #ffbb00,
    #ff9600,
    #ff7600,
    #ff6600
  );
  border-image: linear-gradient(to right, #ffbb00, #ff9600, #ff7600, #ff6600);
  border-image-slice: 1;
}

#g-nav ul li a {
  display: block;
  padding: 10px;
  color: #667968;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-size: 16px;
}

@media screen and (max-width: 650px) {
  /* タブ小 */
  .plugin_text p {
    font-size: 80%;
  }
  .plugin_text h1 {
    font-size: 270%;
  }

  .plg_img_list li {
    font-size: xx-small;
    height: 40%;
  }
  .plg_img_list ul {
    font-size: x-small;
    height: 80px !important;
  }
  .kochira a {
    font-size: x-small !important;
  }
  .plg_list_text {
    font-size: small !important;
  }
}

@media screen and (max-width: 680px) {
  .header-inner ul {
    display: none;
  }
}
@media screen and (min-width: 680px) {
  .openbtn {
    display: none;
  }
}
/* .plugin_main_img img {
  width: 300px;
} */
/* パズルの画像 */
.plg_pzl_img {
  width: 40%;
  padding: 0;
  position: absolute;
  left: 0px;
  top: 20px;
}

/* 男性画像 */
.plg_man_img {
  width: 100%;
}

/* .men_pzl_img {
 width: 90%;
 position: relative;
        bottom: -33%;
    left: 10%;
} */

.main_a {
  width: 500px;
  height: 60px;
}

.main_a a {
  font-weight: bold;
  text-align: center;
  padding: 3% 10%;
  line-height: 60px;
  background-color: #ff9602;
  text-decoration: none;
  color: #ffffff;
  border-radius: 35px;
}

/* パートナー＿申込横並び中央 */
.par_mousikomi {
  display: flex;
  align-items: center;
  position: relative;
  top: -40px;
  margin: 8% 0 0;
}

.par_img {
  width: 50%;
}

/* プラグイン一覧 全体*/
.plg_list {
  margin: auto;
  width: 70%;
  text-align: -webkit-center;
  max-width: 1200px;
}
.border {
  width: 15%;
  padding: 0;
  margin: 0 0 10%;
  border-bottom: 4.5px solid #ff9602;
}

.plg_wrapp {
  margin: 3%;
  width: 40%;
  height: 1%;
}
.plg_list_item {
  position: relative;
  margin-bottom: 12%;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 5%;
}

/* プラグイン画像横並び一覧グル */

.plg_img_list {
  display: flex;
  width: 70%;
  margin: auto;
  justify-content: space-evenly;
}
.plg_img_list img {
  width: 100%;
}

.plg_img_list li {
  list-style: none;
  font-size: xx-small;
}
.plg_img_list ul {
  width: 100%;
  font-weight: bold;
  padding: 0;
  height: 70px;
}

.plg_list_text {
  text-align: center;
  font-weight: bolder;
  font-size: xx-large;
  padding: 2% 0;
  margin: 10% 0 0;
  width: 35%;
}

.kochira {
  padding: 2%;
  text-align: end;
  background-color: lightgray;
}

.kochira a {
  padding: 1%;
  display: flex;
  justify-content: flex-end;
  background-color: lightgray;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: small;
}

/* 無料ボタン */
.free {
  position: absolute;
  top: -8%;
  width: 100%;
  height: 30%;
  display: flex;
  justify-content: center;
}
.free_stum_btn {
  position: relative;
  left: -25%;
}

.free_stum_pop {
  position: relative;
}

/* お問い合わせ */
.toiawase_back {
  background-color: #fff1e3;
  padding: 3% 0;
}

.toi_item {
  width: 70%;
  margin: 0 auto;
  max-width: 1200px;
}
.toi {
  text-align: center;
  font-size: x-large;
  margin: 3%;
}

.toi_kome {
  font-weight: 500;
  text-align: center;
  font-size: small;
  margin: 2%;
}

.toi_kochira {
  margin: 10% 0 5%;
  text-align: center;
}
.toi_kochira a {
  text-align: center;
  padding: 2.5% 5%;
  line-height: 60px;
  background-color: #ff9602;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  border-radius: 35px;
}

footer {
  padding: 10px 0;
  background: #001867;
  color: #fff;
  text-align: center;
}

/* モバイル版 480px*/
@media screen and (max-width: 480px) {
  .plg_main {
    padding: 20% 7% 15%;
  }
  .main_cont {
    display: block;
    justify-content: space-evenly;
  }
  .plugin_text {
    width: 100%;
  }

  .plugin_text h1 {
    font-size: 250%;
    width: 100%;
    text-align: center;
  }

  .plugin_text p {
    font-size: 85%;
    text-align: center;
    width: 100%;
  }
  .plugin_main_img {
    margin: auto;
    width: 85%;
    display: flex;
    position: relative;
    justify-content: center;
    padding: 0;
  }
  /* パズル画像 */
  .plg_pzl_img {
    width: 40%;
    padding: 0;
    top: -10px;
    left: -15px;
    position: absolute;
  }
  /* 男性画像 */
  .plg_man_img {
    /* 画像のwidthは100％にしないとはみ出る */
    width: 100%;
  }

  .par_mousikomi {
    top: -15px;
  }

  .main_a a {
    font-size: 8px;
  }

  .plg_list_text {
    font-size: 60%;
    padding: 3% 0 2%;
  }

  .plg_img_list ul {
    font-size: x-small;
    height: 130px !important;
  }

  .kochira a {
    font-size: 8px !important;
  }

  .free_stum_btn {
    left: -23%;
  }

  .free {
    top: -5%;
    height: 17%;
  }

  .toi {
    font-size: small;
  }

  .toi_kome {
    font-size: 8px;
  }
  .toi_kochira a {
    font-size: xx-small;
  }
}
